home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / hotplug / dasd.permissions < prev    next >
Text File  |  2006-05-01  |  677b  |  31 lines

  1. #!/bin/sh
  2. #
  3. # Copyright (c) 2002 SuSE Linux AG, Nuremberg
  4. #
  5. # Author:  Susanne Oberhauser <froh@suse.de>, 2002
  6. #
  7. # the GNU Public License applies
  8. #
  9.  
  10. # modify this function at your heart's:
  11. dasd_permissions()
  12. {
  13.  
  14.     case "$NODE-$MAJOR-$MINOR-$MISC" in
  15.     # add your special ownership handling here, e.g.
  16.     #
  17.     # this feature is experimental, which means it's neither
  18.     # supported nor maintained: you're on your own.
  19.     #
  20.     # /dev/dasd*-*-*-*-ORA*) OWNER=ora.ora; PERMISSIONS="ug=rw,o=";;
  21.     #
  22.     /dev/dasd*-*)
  23.         # default:
  24.         OWNER=root.disk
  25.         PERMISSIONS="ug=rw,o="
  26.         ;;
  27.     *)
  28.         die "dasd_permissions: don't know what permissions to give $NODE-$MAJOR-$MINOR-$MISC"
  29.     esac
  30. }
  31.